home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gdevadmp.c < prev    next >
C/C++ Source or Header  |  1995-01-10  |  12KB  |  408 lines

  1. /* Copyright (C) 1989, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /*
  20.  * This is a modification of Mark Wedel's Apple DMP and 
  21.  * Jonathan Luckey's Imagewriter II driver to
  22.  * support the Imagewriter LQ's higher resolution (320x216):
  23.  *      appledmp:  120dpi x  72dpi is still supported (yuck)
  24.  *    iwlo:       160dpi x  72dpi
  25.  *    iwhi:       160dpi x 144dpi
  26.  *      iwlq:      320dpi x 216dpi
  27.  *
  28.  * This is also my first attempt to work with gs. I have not included the LQ's
  29.  * ability to print in colour. Perhaps at a later date I will tackle that.
  30.  *
  31.  * BTW, to get your Imagewriter LQ serial printer to work with a PC, attach it
  32.  * with a nullmodem serial cable.
  33.  *
  34.  * Scott Barker (barkers@cuug.ab.ca)
  35.  */
  36.  
  37. /*
  38.  * This is a modification of Mark Wedel's Apple DMP driver to
  39.  * support 2 higher resolutions:
  40.  *      appledmp:  120dpi x  72dpi is still supported (yuck)
  41.  *    iwlo:       160dpi x  72dpi
  42.  *    iwhi:       160dpi x 144dpi
  43.  *
  44.  * The Imagewriter II is a bit odd.  In pinfeed mode, it thinks its
  45.  * First line is 1 inch from the top of the page. If you set the top
  46.  * form so that it starts printing at the top of the page, and print
  47.  * to near the bottom, it thinks it has run onto the next page and
  48.  * the formfeed will skip a whole page.  As a work around, I reverse
  49.  * the paper about a 1.5 inches at the end of the page before the
  50.  * formfeed to make it think its on the 'right' page.  bah. hack!
  51.  * 
  52.  * This is  my first attempt to work with gs, so your milage may vary
  53.  *
  54.  * Jonathan Luckey (luckey@rtfm.mlb.fl.us)
  55.  */
  56.  
  57. /* This is a bare bones driver I developed for my apple Dot Matrix Printer.
  58.  * This code originally was from the epson driver, but I removed a lot
  59.  * of stuff that was not needed.
  60.  *
  61.  * The Dot Matrix Printer was a predecessor to the apple Imagewriter.  Its
  62.  * main difference being that it was parallel.
  63.  *
  64.  * This code should work fine on Imagewriters, as they have a superset
  65.  * of commands compared to the DMP printer.
  66.  *
  67.  * This driver does not produce the smalles output files possible.  To
  68.  * do that, it should look through the output strings and find repeat
  69.  * occurances of characters, and use the escape sequence that allows
  70.  * printing repeat sequences.  However, as I see it, this the limiting
  71.  * factor in printing is not transmission speed to the printer itself,
  72.  * but rather, how fast the print head can move.  This is assuming the
  73.  * printer is set up with a reasonable speed (9600 bps)
  74.  *
  75.  * WHAT THE CODE DOES AND DOES NOT DO:
  76.  *
  77.  * To print out images, it sets the printer for unidirection printing
  78.  * and 15 cpi (120 dpi). IT sets line feed to 1/9 of an inch (72 dpi).
  79.  * When finished, it sets things back to bidirection print, 1/8" line
  80.  * feeds, and 12 cpi.  There does not appear to be a way to reset
  81.  * things to initial values.
  82.  *
  83.  * This code does not set for 8 bit characters (which is required). It
  84.  * also assumes that carriage return/newline is needed, and not just
  85.  * carriage return.  These are all switch settings on the DMP, and
  86.  * I have configured them for 8 bit data and cr only.
  87.  *
  88.  * You can search for the strings Init and Reset to find the strings
  89.  * that set up the printer and clear things when finished, and change
  90.  * them to meet your needs.
  91.  *
  92.  * Also, you need to make sure that the printer daemon (assuming unix)
  93.  * doesn't change the data as it is being printed.  I have set my
  94.  * printcap file (sunos 4.1.1) with the string:
  95.  * ms=pass8,-opost
  96.  * and it works fine.
  97.  *
  98.  * Feel free to improve this code if you want.  However, please make
  99.  * sure that the old DMP will still be supported by any changes.  This
  100.  * may mean making an imagewriter device, and just copying this file
  101.  * to something like gdevimage.c.
  102.  *
  103.  * The limiting factor of the DMP is the vertical resolution.  However, I
  104.  * see no way to do anything about this.  Horizontal resolution could
  105.  * be increased by using 17 cpi (136 dpi).  I believe the Imagewriter
  106.  * supports 24 cpi (192 dpi).  However, the higher dpi, the slower
  107.  * the printing.
  108.  *
  109.  * Dot Matrix Code by Mark Wedel (master@cats.ucsc.edu)
  110.  */
  111.  
  112.  
  113. #include "gdevprn.h"
  114.  
  115. /* The device descriptors */
  116. private dev_proc_print_page(dmp_print_page);
  117.  
  118. /* Standard DMP device */
  119. gx_device_printer far_data gs_appledmp_device =
  120. prn_device(prn_std_procs, "appledmp",
  121.     85,                /* width_10ths, 8.5" */
  122.     110,                /* height_10ths, 11" */
  123.     120, 72,            /* X_DPI, Y_DPI */
  124.     0, 0.5, 0.5, 0,        /* margins */
  125.     1, dmp_print_page);
  126.  
  127.  
  128. /*  lowrez Imagewriter device */
  129. gx_device_printer far_data gs_iwlo_device =
  130. prn_device(prn_std_procs, "iwlo",
  131.     85,                /* width_10ths, 8.5" */
  132.     110,                /* height_10ths, 11" */
  133.     160, 72,            /* X_DPI, Y_DPI */
  134.     0, 0.5, 0.5, 0,        /* margins */
  135.     1, dmp_print_page);
  136.  
  137.  
  138. /*  hirez Imagewriter device */
  139. gx_device_printer far_data gs_iwhi_device =
  140. prn_device(prn_std_procs, "iwhi",
  141.     85,                /* width_10ths, 8.5" */
  142.     110,                /* height_10ths, 11" */
  143.     160, 144,            /* X_DPI, Y_DPI */
  144.     0, 0.5, 0.5, 0,        /* margins */
  145.     1, dmp_print_page);
  146.  
  147.  
  148. /* LQ hirez Imagewriter device */
  149. gx_device_printer far_data gs_iwlq_device =
  150. prn_device(prn_std_procs, "iwlq",
  151.     85,                /* width_10ths, 8.5" */
  152.     110,                /* height_10ths, 11" */
  153.     320, 216,
  154.     0, 0, 0.5, 0,        /* margins */
  155.     1, dmp_print_page);
  156.  
  157.  
  158. /* ------ Internal routines ------ */
  159.  
  160. #define DMP 1
  161. #define IWLO 2
  162. #define IWHI 3
  163. #define IWLQ 4
  164.  
  165. /* Send the page to the printer. */
  166. private int
  167. dmp_print_page(gx_device_printer *pdev, FILE *prn_stream)
  168. {    
  169.     int dev_type;
  170.  
  171.     int line_size = gdev_mem_bytes_per_scan_line((gx_device *)pdev);
  172.     /* Note that in_size is a multiple of 8. */
  173.     int in_size = line_size * 8;
  174.   
  175.     byte *buf1 = (byte *)gs_malloc(in_size, 1, "dmp_print_page(buf1)");
  176.     byte *buf2 = (byte *)gs_malloc(in_size, 1, "dmp_print_page(buf2)");
  177.     byte *prn = (byte *)gs_malloc(3*in_size, 1, "dmp_print_page(prn)");
  178.   
  179.     byte *in = buf1;
  180.     byte *out = buf2;
  181.     int lnum = 0;
  182.  
  183.     /* Check allocations */
  184.     if ( buf1 == 0 || buf2 == 0 || prn == 0 )
  185.     {
  186.         if ( buf1 ) 
  187.             gs_free((char *)buf1, in_size, 1,
  188.             "dmp_print_page(buf1)");
  189.         if ( buf2 ) 
  190.             gs_free((char *)buf2, in_size, 1,
  191.             "dmp_print_page(buf2)");
  192.         if ( prn ) 
  193.             gs_free((char *)prn, in_size, 1,
  194.             "dmp_print_page(prn)");
  195.         return_error(gs_error_VMerror);
  196.     }
  197.  
  198.     if ( pdev->y_pixels_per_inch == 216 )
  199.         dev_type = IWLQ;
  200.     else if ( pdev->y_pixels_per_inch == 144 )
  201.         dev_type = IWHI;
  202.     else if ( pdev->x_pixels_per_inch == 160 )
  203.         dev_type = IWLO;
  204.     else
  205.         dev_type = DMP;
  206.  
  207.     /* Initialize the printer and reset the margins. */
  208.  
  209.     fputs("\r\n\033>\033T16", prn_stream);
  210.  
  211.     switch(dev_type)
  212.     {
  213.     case IWLQ:
  214.         fputs("\033P\033a3", prn_stream);
  215.         break;
  216.     case IWHI:
  217.     case IWLO:
  218.         fputs("\033P", prn_stream);
  219.         break;
  220.     case DMP: 
  221.     default:
  222.         fputs("\033q", prn_stream);
  223.         break;
  224.     }
  225.  
  226.     /* Print lines of graphics */
  227.     while ( lnum < pdev->height )
  228.     {    
  229.         byte *inp;
  230.         byte *in_end;
  231.         byte *out_end;
  232.         int lcnt,ltmp;
  233.         int count, passes;
  234.         byte *prn_blk, *prn_end, *prn_tmp;
  235.  
  236. /* The apple DMP printer seems to be odd in that the bit order on
  237.  * each line is reverse what might be expected.  Meaning, an
  238.  * underscore would be done as a series of 0x80, while on overscore
  239.  * would be done as a series of 0x01.  So we get each
  240.  * scan line in reverse order.
  241.  */
  242.  
  243.         switch (dev_type)
  244.         {
  245.         case IWLQ: passes = 3; break;
  246.         case IWHI: passes = 2; break;
  247.         case IWLO:
  248.         case DMP:
  249.         default: passes = 1; break;
  250.         }
  251.  
  252.         for (count = 0; count < passes; count++)
  253.         {
  254.             for (lcnt=0; lcnt<8; lcnt++)
  255.             {
  256.                 switch(dev_type)
  257.                 {
  258.                 case IWLQ: ltmp = lcnt + 8*count; break;
  259.                 case IWHI: ltmp = 2*lcnt + count; break;
  260.                 case IWLO:
  261.                 case DMP:
  262.                 default: ltmp = lcnt; break;
  263.                 }
  264.  
  265.                 if ((lnum+ltmp)>pdev->height) 
  266.                     memset(in+lcnt*line_size,0,line_size);
  267.                 else
  268.                     gdev_prn_copy_scan_lines(pdev,
  269.                     lnum+ltmp, in + line_size*(7 - lcnt),
  270.                     line_size);
  271.             }
  272.  
  273.             out_end = out;
  274.             inp = in;
  275.             in_end = inp + line_size;
  276.             for ( ; inp < in_end; inp++, out_end += 8 )
  277.             {
  278.                 gdev_prn_transpose_8x8(inp, line_size,
  279.                 out_end, 1);
  280.             }
  281.  
  282.             out_end = out;
  283.  
  284.             switch (dev_type)
  285.             {
  286.             case IWLQ: prn_end = prn + count; break;
  287.             case IWHI: prn_end = prn + in_size*count; break;
  288.             case IWLO:
  289.             case DMP:
  290.             default: prn_end = prn; break;
  291.             }
  292.  
  293.             while ( (int)(out_end-out) < in_size)
  294.             {
  295.                 *prn_end = *(out_end++);
  296.                 if ((dev_type) == IWLQ) prn_end += 3;
  297.                 else prn_end++;
  298.             }
  299.         }
  300.       
  301.         switch (dev_type)
  302.         {
  303.         case IWLQ:
  304.             prn_blk = prn;
  305.             prn_end = prn_blk + in_size * 3;
  306.             while (prn_end > prn && prn_end[-1] == 0 &&
  307.                 prn_end[-2] == 0 && prn_end[-3] == 0)
  308.             {
  309.                 prn_end -= 3;
  310.             }
  311.             while (prn_blk < prn_end && prn_blk[0] == 0 &&
  312.                 prn_blk[1] == 0 && prn_blk[2] == 0)
  313.             {
  314.                 prn_blk += 3;
  315.             }
  316.             if (prn_end != prn_blk)
  317.             {
  318.                 if ((prn_blk - prn) > 7)
  319.                     fprintf(prn_stream,"\033U%04d%c%c%c",
  320.                         (int)((prn_blk - prn)/3),
  321.                         0, 0, 0);
  322.                 else
  323.                     prn_blk = prn;
  324.                 fprintf(prn_stream,"\033C%04d",
  325.                     (int)((prn_end - prn_blk)/3));
  326.                 fwrite(prn_blk, 1, (int)(prn_end - prn_blk),
  327.                     prn_stream);
  328.                 }
  329.             break;
  330.         case IWHI:
  331.             for (count = 0; count < 2; count++)
  332.             {
  333.                 prn_blk = prn_tmp = prn + in_size*count;
  334.                 prn_end = prn_blk + in_size;
  335.                 while (prn_end > prn_blk && prn_end[-1] == 0)
  336.                     prn_end--;
  337.                 while (prn_blk < prn_end && prn_blk[0] == 0)
  338.                     prn_blk++;
  339.                 if (prn_end != prn_blk)
  340.                 {
  341.                     if ((prn_blk - prn_tmp) > 7)
  342.                         fprintf(prn_stream,
  343.                             "\033V%04d%c",
  344.                             (int)(prn_blk-prn_tmp),
  345.                              0);
  346.                     else
  347.                         prn_blk = prn_tmp;
  348.                     fprintf(prn_stream,"\033G%04d",
  349.                         (int)(prn_end - prn_blk));
  350.                     fwrite(prn_blk, 1,
  351.                         (int)(prn_end - prn_blk),
  352.                         prn_stream);
  353.                 }
  354.                 if (!count) fputs("\033T01\r\n",prn_stream);
  355.             }
  356.             fputs("\033T15",prn_stream);
  357.             break;
  358.         case IWLO:
  359.         case DMP:
  360.         default:
  361.             prn_blk = prn;
  362.             prn_end = prn_blk + in_size;
  363.             while (prn_end > prn_blk && prn_end[-1] == 0)
  364.                 prn_end--;
  365.             while (prn_blk < prn_end && prn_blk[0] == 0)
  366.                 prn_blk++;
  367.             if (prn_end != prn_blk)
  368.             {
  369.                 if ((prn_blk - prn) > 7)
  370.                     fprintf(prn_stream,"\033V%04d%c",
  371.                         (int)(prn_blk - prn), 0);
  372.                 else
  373.                     prn_blk = prn;
  374.                 fprintf(prn_stream,"\033G%04d",
  375.                     (int)(prn_end - prn_blk));
  376.                 fwrite(prn_blk, 1, (int)(prn_end - prn_blk),
  377.                     prn_stream);
  378.             }
  379.             break;
  380.         }
  381.  
  382.         fputs("\r\n",prn_stream);
  383.  
  384.         switch (dev_type)
  385.         {
  386.             case IWLQ: lnum += 24 ; break;
  387.             case IWHI: lnum += 16 ; break;
  388.             case IWLO:
  389.             case DMP:
  390.             default: lnum += 8 ; break;
  391.         }
  392.     }
  393.  
  394.     /* ImageWriter will skip a whole page if too close to end */
  395.     /* so skip back more than an inch */
  396.     if ( !(dev_type == DMP) )
  397.         fputs("\033T99\n\n\033r\n\n\n\n\033f", prn_stream);
  398.   
  399.     /* Formfeed and Reset printer */
  400.     fputs("\033T16\f\033<\033B\033E", prn_stream);
  401.     fflush(prn_stream);
  402.  
  403.     gs_free((char *)prn, in_size, 1, "dmp_print_page(prn)");
  404.     gs_free((char *)buf2, in_size, 1, "dmp_print_page(buf2)");
  405.     gs_free((char *)buf1, in_size, 1, "dmp_print_page(buf1)");
  406.     return 0;
  407. }
  408.